*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.banner
{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url(watch1.gif);
    background-size: cover;
    background-position: center;
}

.navbar
{
	width: 85%;
	margin: auto;
	padding: 35px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.name
{
	color: white;
	font-family: sans-serif;
	font-size: 30px;
}

.name:hover
{
	-ms-transform: scale(1.1); /* IE 9 */
   -webkit-transform: scale(1.1); /* Safari 3-8 */
   transform: scale(1.1);
}



.navbar ul li
{
	list-style: none;
	display: inline-block;
	margin: 0 20px;
	position: relative;
}
.navbar ul li a 
{
	text-decoration: none;
	color: white;
	font-family: sans-serif;
}
.navbar ul li::after
{
	content: '';
	height: 3px;
	width: 0;
	background: #ffc107;
	position: absolute;
	left: 0;
	bottom: -10px;
	transition: 0.5s;
}
.navbar ul li:hover::after
{
	width: 100%;

}

/*  Form style  */

.form 
{
	position: absolute;
	top: 57%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 350px;
	color: white;
}

.form h1
{
	font-size: 30px;
	text-align: center;
	text-transform: uppercase;
	margin: 40px 0;
}

.form p 
{
	font-size: 20px;
	margin: 30px 0;
}

.form input 
{
	font-size: 14px;
	padding: 15px 10px;
	width: 100%;
	border: 0;
	border-radius: 12px;
	outline: none;
}


.form button
{
	padding: 10px 15px;
	margin: 40px 0;
	margin-left: 101px;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 3px;
	border: 3px solid #e6b800;
	color: #fff;
	cursor: pointer;
	background: linear-gradient(to right, transparent 50%, #e6b800 50%);
	background-size: 200%;
	background-position: left;
	transition:background-position 0.5s;
	border-radius: 10px;
}

.form button:hover
{
	background-position: right;
	color: #000;
	-ms-transform: scale(1.1); 
   -webkit-transform: scale(1.1); 
   transform: scale(1.1);
}


.footer 
{
  background-color: black;
  padding: 10px;
  text-align: center;
  margin-top: 725px;
  position: bottom;
}

.zoom3 /* footer social media  */
{
   padding: auto;
   transition: transform .3s;
   width: 28px;
   height: 28px;
   margin: 0 auto;
}

.zoom3:hover /* footer social media  */
{
   -ms-transform: scale(1.8); 
   -webkit-transform: scale(1.8); 
   transform: scale(1.8);
}


.loader_bg
{
    position: fixed;
    z-index: 999999;
    background: black;
    width: 100%;
    height: 100%;
}


.loader
{
    border: 0 soild transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}


.loader:before, .loader:after
{
    content: '';
    border: 1em solid #e6b800;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 2s linear infinite;
    opacity: 0;
}


.loader:before
{
    animation-delay: .5s;
}
@keyframes loader
{
    0%{
        transform: scale(0);
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        transform: scale(1);
        opacity: 0;
    }
}